BREAK_ON
BREAK_OFF
BREAK
BREAK%
 
Syntax: BREAK_ON                (TinyToolkit)
   and: BREAK_OFF               (TinyToolkit)
   and: BREAK                   (TinyToolkit)
    or: BREAK switch            (Btool)
   and: BREAK%                  (Btool)
Location: TinyToolkit,BTool

The command BREAK_OFF de-activates the functioning of both <CTRL><SPACE> (the Break Key) and <CTRL><F5> (the Pause Screen key) during the running of interpreted SuperBASIC programs.

The command BREAK_ON reactivates both keys.

The Btool command BREAK enables (switch=1) or disables (switch=0) the break key only.

The TinyToolkit function BREAK returns the current status:

    IF BREAK=1 means the Break Key is active, while
    IF BREAK=0 means that it is inactive.

Btool uses the function BREAK% for exactly the same.

NOTE:
BREAK_OFF may not work on Minerva ROMs unless you have v1.10 or later of the Toolkit, which uses the new Minerva System Xtensions to overcome any problem.

CROSS-REFERENCE:
STOP terminates interpreted programs even if the Break Key is disabled.
See also FREEZE.
